home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Libris Britannia 4
/
science library(b).zip
/
science library(b)
/
DJGPP
/
CBGRX103.ZIP
/
contrib
/
libgrx
/
src
/
make.bat
< prev
next >
Wrap
DOS Batch File
|
1993-12-06
|
383b
|
30 lines
@echo off
if _%1==_ goto default
:again
goto %1
goto exit
:default
make.exe -fmakefile.gcc
if errorlevel 1 goto exit
goto end
:turboc
make.exe -fmakefile.tcc
if errorlevel 1 goto exit
goto end
:all
call make default
if errorlevel 1 goto exit
call make turboc
if errorlevel 1 goto exit
goto end
:end
shift
if not _%1==_ goto again
:exit